home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 7 / Apprentice-Release7.iso / Source Code / Libraries / Aidan's Class Libraries / Source / Headers / CLPicture.h < prev    next >
Encoding:
Text File  |  1997-05-18  |  372 b   |  24 lines  |  [TEXT/CWIE]

  1. //Copyright (c) 1997 Aidan Cully
  2. //All rights reserved.
  3.  
  4. #ifndef __PICTURE_H
  5. #define __PICTURE_H
  6.  
  7. #include "CLDrawSlate.h"
  8.  
  9. class TPicture:
  10.     public TDrawSlate
  11. {
  12. private:
  13.     PicHandle mhPic;
  14.     OpenCPicParams mhParms;
  15. protected:
  16.     virtual Boolean GetDrawSelf();
  17.     virtual Boolean ReleaseDrawSelf();
  18. public:
  19.     TPicture( Rect );
  20.     virtual ~TPicture();
  21.     PicHandle GetPic();
  22. };
  23.  
  24. #endif